net/http.http2priorityNode.kids (field)

14 uses

	net/http (current package)
		h2_bundle.go#L10439: 	kids       *http2priorityNode // start of the kids list
		h2_bundle.go#L10453: 			parent.kids = n.next
		h2_bundle.go#L10469: 		n.next = parent.kids
		h2_bundle.go#L10474: 		parent.kids = n
		h2_bundle.go#L10495: 	if n.kids == nil {
		h2_bundle.go#L10508: 	w := n.kids.weight
		h2_bundle.go#L10510: 	for k := n.kids.next; k != nil; k = k.next {
		h2_bundle.go#L10517: 		for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L10528: 	for n.kids != nil {
		h2_bundle.go#L10529: 		*tmp = append(*tmp, n.kids)
		h2_bundle.go#L10530: 		n.kids.setParent(nil)
		h2_bundle.go#L10536: 	for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L10706: 		k := parent.kids
		h2_bundle.go#L10783: 	for k := n.kids; k != nil; k = k.next {